curl --request POST \
--url https://api-lr.agent.ai/v1/action/company_research_v2_track_company \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"output_variable_name": "tracked_company",
"domain": "<string>",
"company_id": "<string>",
"is_favorite": false,
"tags": "<string>"
}
'{
"status": 123,
"response": {}
}Add a company to the user’s tracked list for monitoring.
curl --request POST \
--url https://api-lr.agent.ai/v1/action/company_research_v2_track_company \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"output_variable_name": "tracked_company",
"domain": "<string>",
"company_id": "<string>",
"is_favorite": false,
"tags": "<string>"
}
'{
"status": 123,
"response": {}
}Bearer token from your account (https://agent.ai/user/integrations#api)
Variable name for the tracking result.
^[a-zA-Z][a-zA-Z0-9_]*$Domain of the company to track.
Alternatively, provide the company ID.
Add to favorites for priority monitoring.
Comma-separated tags (e.g., 'competitor, prospect').